home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 3 / Info_Mac_1994-01.iso / Science / MathPad 2.1.5 / Datafiles.doc next >
Text File  |  1993-09-20  |  3KB  |  19 lines

  1.  
  2.    MathPad provides read and write functions for saving results and for importing or exporting data.
  3.  
  4.    The function read("filename") returns an array of values read from the named data file. Double quotes are needed if the filename contains blanks or punctuation. The data file is assumed to be in the same folder as the source document. Mac style pathnames such as "Hard Disk:DataFolder:file47" are allowed.
  5.  
  6.    The function write("filename",array)  writes the elements of the 1D or 2D array to the named file.
  7.  
  8.  There are three data file formats supported: Text files, 32-bit floating point and 16-bit integer. The Options... menu item allows you to select which format will be written. The read function can read any of the three formats. It learns the format from its file type.
  9.  
  10.       TEXT format
  11. TEXT data files can be written or read by many applications. MathPad's read function is very flexible about how the numbers are formatted and delimited. Commas, tabs, spaces, letters or anything except -.? or digits can be used to delimit numbers.
  12.    MathPad does assign some meaning to line formatting. The number of values in the first line is taken as the number of columns in the matrix. If the file consists of a single row or a single column of numbers it is treated as a one dimensional array rather matrix. If the file starts with a return (empty first line) then it is treated as a one dimensional array regardless of how the rest of the lines are formatted.
  13.    The write function uses a single tab to delimit each number. Matrix values are output as one row per line. This format is compatible with many spreadsheet programs. Numbers are written with 7 digit precision regardless of the current numeric format. A '?' is used to represent missing data.
  14.  
  15.       32-bit IEEE floating point format
  16.    It is inefficient in both time and file space to convert numbers to text. For large data files it may be better to read and write a more compact binary form. This format stores 4 bytes/element. The numbers are stored in the file's data fork. There is no header or other special formatting. Matrix column information is stored in the resource fork.
  17.  
  18.       16-bit integer format
  19.    This format provides an even more compact representation. It is however limited to integers in the range -32767 to +32767. The value -32768 is used to represent missing data. This format stores 2 bytes/element. The numbers are stored in the file's data fork. There is no header or other special formatting. Matrix column information is stored in the resource fork.